.owl-carousel.owl-theme .title h2,
.featured-image-top h1.page-title {
	-webkit-animation-name: icdzoom; /* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 1s; /* Safari 4.0 - 8.0 */
	animation-name: icdzoom;
	animation-duration: 1s;
	position:relative;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes icdzoom {
	0%   {left:-100%; opacity:0; transform:scale(2.5);}
	100% {left:0%; opacity:1; transform:scale(1);}
}

/* Standard syntax */
@keyframes icdzoom {
	0%   {left:-100%; opacity:0; transform:scale(2.5);}
	100% {left:0%; opacity:1; transform:scale(1);}
}